home *** CD-ROM | disk | FTP | other *** search
- on AdjustClues
- repeat with vI = 246 to 709
- put vI
- set vPoint to the regPoint of cast vI
- set vH to getAt(vPoint, 1) + 2
- set vV to getAt(vPoint, 2) + 0
- set the regPoint of cast vI to point(vH, vV)
- end repeat
- end
-
- on findMissing
- set vText to the text of cast 7
- set vlines to the number of lines in vText
- repeat with vI = 1 to vlines
- set the itemDelimiter to "#"
- set vData to item 2 of line vI of vText
- set the itemDelimiter to ":"
- set vAth to item 1 of vData
- set vClues to value(item 2 of vData)
- if vAth < 10 then
- set vPre to "00"
- else
- if vAth < 100 then
- set vPre to "0"
- else
- set vPre to EMPTY
- end if
- end if
- checkPresent("HS" & vPre & vAth & ".pct")
- checkPresent("MA" & vPre & vAth)
- repeat with vJ = 1 to count(vClues)
- checkPresent(getAt(vClues, vJ) & ".pct")
- end repeat
- end repeat
- end
-
- on checkPresent aName
- if the number of cast aName < 1 then
- put "Missing" && aName
- end if
- end
-
- on MarkBad
- set vText to the text of cast 962
- set vlines to the number of lines in vText
- repeat with vI = 1 to vlines
- set vName to line vI of vText & ".pct"
- set the name of cast vName to "Delete Me"
- end repeat
- end
-